home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / DELPHCGI.ZIP / CGI.ZIP / SAMPLES / FORMLESS / NOFORM.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-07-17  |  168 b   |  15 lines

  1. program NoForm;
  2.  
  3. uses
  4.     CGI,
  5.     CGIProcs;
  6.  
  7. begin
  8.     CGI1 := TCGI.Create(nil);
  9.     case CGI1.Method of
  10.         rmGet: SendOrderForm;
  11.         rmPost: ProcessOrder;
  12.     end;
  13. end.
  14.  
  15.